home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cfinger_version.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  78 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10651);
  10.  script_version ("$Revision: 1.4 $");
  11.  name["english"] = "cfinger's version";
  12.  name["francais"] = "version de cfinger";
  13.  script_name(english:name["english"], francais:name["francais"]);
  14.  
  15.  desc["english"] = "
  16. This script retrieves the version of the remote cfinger
  17. daemon.
  18.  
  19. A finger daemon should not advertise its version to the world.
  20.  
  21. Risk factor : Low";
  22.  
  23.  desc["francais"] = "
  24. Ce script rΘcupΦre la version du damon cfinger distant.
  25.  
  26. Un daemon finger ne devrait pas afficher sa version.
  27.  
  28. Facteur de risque : Faible";
  29.  
  30.  script_description(english:desc["english"], francais:desc["francais"]);
  31.  
  32.  summary["english"] = "cfinger version";
  33.  summary["francais"] = "cfinger version";
  34.  script_summary(english:summary["english"], francais:summary["francais"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  40.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  41.  family["english"] = "Finger abuses";
  42.  family["francais"] = "Abus de finger";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  script_dependencie("find_service.nes");
  45.  script_require_ports("Services/finger", 79);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51. #
  52.  
  53. port = get_kb_item("Services/finger");
  54. if(!port)port = 79;
  55. if(get_port_state(port))
  56. {
  57.  soc = open_sock_tcp(port);
  58.  if(soc)
  59.  {
  60.   buf = string("version\r\n");
  61.   send(socket:soc, data:buf);
  62.   r = recv(socket:soc, length:4096);
  63.   if("CFINGERD" >< r)
  64.   {
  65.     s = strstr(r, "CFINGERD");
  66.     version = ereg_replace(pattern:"(.*) is (.*[0-9]).*$",
  67.                   string:s,
  68.                replace:"\2");
  69.                
  70.    report = "The version of the remote cfinger daemon is : " + version;
  71.    set_kb_item(name:"cfingerd/version",
  72.            value:version); 
  73.    security_note(port:port, data:report);
  74.   }
  75.   close(soc);
  76.   }
  77. }
  78.